home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / comms / ppppkt05.zip / apphints.txt next >
Text File  |  1994-11-16  |  11KB  |  299 lines

  1. File:  APPHINTS.TXT                                     Date:  16 Nov 1994
  2.  
  3.  
  4.           This file discusses some ethernet-based DOS applications
  5.         that have been tested with PPPPKT, including comments on
  6.         performance, quirks and critical configuration parameters
  7.         to set.  It is possible to put together a relatively nice
  8.         suite of free- or share-ware applications which work quite
  9.         well with PPPPKT by selecting the best items from below.
  10.  
  11.           Undoubtedly users will find other applications which
  12.         work, and will find ways to improve upon the performance
  13.         discussed here.  The author would be interested to hear of
  14.         such developments, for possible inclusion in future
  15.         editions of this file.
  16.  
  17.           Each package is listed with an anonymous ftp source, its
  18.         executable files with a brief comment, and finally some
  19.         general comments and specific hints.  The comments apply in
  20.         the context of use with PPPPKT.  In many cases they are
  21.         based on rather limited testing.  Noted problems are not
  22.         intended to inflame.  Obviously the performance on true
  23.         ethernet is bug-free.
  24.  
  25.  
  26. MS-Kermit 3.13  (telnet, scripted dialing)
  27. ==============
  28.  
  29. Source:  math.ucla.edu:/pub/kermit/msdos/msker313.zip
  30.                                          msr31212.pch
  31.                                          msr313.pch
  32.  
  33.          oak.oakland.edu:/SimTel/msdos/kermit/msker313.zip
  34.                                               msr31321.pch
  35.  
  36.          kermit.columbia.edu:/kermit/bin/msvibm.exe
  37.  
  38.     231736   7-12-93   3:01p  kermit.exe        ok
  39.  
  40.   Seems to work fairly well, although response times during a given session
  41. can vary, sometimes becoming quite slow.  Here is a sample configuration
  42. file's TCP/IP section (use IP numbers appropriate to your situation):
  43.  
  44. ;--------
  45.   set tcp/ip address NN.NN.NN.NN                  ; <ip#>
  46.   set tcp/ip subnetmask 255.MM.MM.0               ; <mask>
  47.   set tcp/ip domain machine.organization.country
  48.   set tcp/ip gateway GG.GG.GG.GG                  ; <gateway>
  49.   set tcp/ip primary-nameserver N1.N1.N1.N1
  50.   set tcp/ip secondary-nameserver N2.N2.N2.N2
  51.   set tcp/ip broadcast 255.255.255.255
  52.   set tcp/ip Packet-Driver-interrupt \x60         ; <vector>
  53.   set tcp/ip newline-mode on
  54.   set tcp/ip debug-Options off
  55.   set tcp/ip host HH.HH.HH.HH                     ; preferred default host
  56.   
  57.   set port tcp/ip
  58.   
  59.   def session set port tcp \%1, con
  60.   
  61.   ; TELNET macro, and macros for telnetting to particular hosts
  62.   ; using appropriate terminal type.
  63.   ;   \%1 = IP host name or address
  64.   ;   \%2 = TCP port (optional, default is 23)
  65.   ;   \%3 = terminal type (optional)
  66.   ;
  67.   define telnet -
  68.     set flow none,-
  69.     set port tcp \%1 \%2,-
  70.     if def \%3 set term type \%3,-
  71.     pause 0, if fail end 1, connect       ; pause will start connection
  72.   
  73.   set window 4
  74. ;--------
  75.  
  76.  
  77. NCSAPPP Package  (telnet, ftp, finger, lp*)
  78. ===============
  79.  
  80. Source:  ftp.demon.co.uk:/pub/ibmpc/ncsa/ncsappp.zip
  81.  
  82.     101919   3-06-92  11:44a  finger.exe        ok
  83.     143175   3-06-92  11:45a  ftpbin.exe        unreliable
  84.     101315   3-06-92  11:45a  lpq.exe           ok
  85.     105473   3-06-92  11:45a  lpr.exe           very slow
  86.     101059   3-06-92  11:45a  lprm.exe          ?
  87.     214709   3-06-92  11:45a  telbin.exe        best
  88.     247552   3-13-92   1:53p  tn3270.exe        no go
  89.  
  90.   The telnet application (telbin) is probably the best of the bunch in terms
  91. of response time, provided you make the "retrans=" parameter *small* enough,
  92. say 5 or less ticks.  The feeding of <CR>'s is a bit quirky.  The ftp server
  93. built into telbin gives quite good performance for downloads, while uploads
  94. are ok but too slow.
  95.  
  96.   This configuration file is possibly the hardest to set up properly.
  97. Note that you can use  myip=RARP .  The following parameters work for me:
  98.  
  99. ;--------
  100.   arptime=2                       # arp timeout in seconds [ticks? this ver.]
  101.   domainretry=4
  102.   domaintime=20
  103.   contime=270                     # timeout in ticks ?? to try connection
  104.                                   #   before returning error to user
  105.   retrans=5                       # starting retransmit time out in ticks
  106.                                   #   1/18ths of sec
  107.   mtu=1024                        # maximum transmit unit in bytes
  108.                                   #   outgoing packet size, MAX=1024
  109.   maxseg=1024                     # largest segment we can receive
  110.                                   #   whatever the hardware can take, MAX=2048
  111.   rwin=4096                       # most bytes we can receive without ACK
  112.                                   #   =TCP window size, MAX=4096
  113.                                   #   larger isn't always better
  114. ;--------
  115.  
  116.  
  117. NCSA Telnet 2.3.07  (telnet, ftp, finger, lp*, etc.)
  118. ==================
  119.  
  120. Source:  ftp.ncsa.uiuc.edu:/PC/DOS/Telnet/tel2307b.zip
  121.  
  122.          oak.oakland.edu:/SimTel/msdos/ncsatlnt/tel2307b.zip
  123.                                                 tel23doc.zip
  124.  
  125.      99008  11-19-93   8:17p  finger.exe        not reliable
  126.     168750  11-19-93   8:01p  ftpbin.exe        ok
  127.      98484  11-19-93   8:23p  lpq.exe           ok
  128.     103424  11-19-93   8:23p  lpr.exe           very slow
  129.      97892  11-19-93   8:23p  lprm.exe          ?
  130.     100308  11-19-93   8:34p  rexec.exe         ?
  131.     100216  11-19-93   8:39p  rsh.exe           ok
  132.     100746  11-19-93   8:06p  setclock.exe      ok
  133.     273734  11-19-93   7:55p  telbin.exe        slow response
  134.      98586  11-19-93   8:44p  whois.exe         ok
  135.  
  136.   The ftp application (ftpbin) works reasonably well, although could be a bit
  137. faster.  This telbin gives me about 7 seconds delay in echoing characters back
  138. to the session -- molasses!
  139.  
  140.  
  141. WATTCP (ftp, many utilities, telnet daemon)
  142. ======
  143.  
  144. Source:  dorm.rutgers.edu:/pub/msdos/wattcp/apps.zip
  145.                                             telnetd.zip
  146.          oak.oakland.edu:/pub/msdos/pktdrvr/telnetd.zip
  147.  
  148.      46272   9-15-94   4:09p  cookie.exe        ?
  149.      46048   9-15-94   4:08p  daytime.exe       ok
  150.      54240   9-15-94   4:08p  finger.exe        times out too quick
  151.     188800   9-15-94   4:19p  ftp.exe           best
  152.      46800   9-15-94   4:09p  lpq.exe           ok
  153.      66144   9-15-94   4:08p  lpr.exe           ?
  154.      50528   9-15-94   4:09p  ntime.exe         ?
  155.      52016   9-15-94   4:09p  ph.exe            ok
  156.      50208   9-15-94   4:08p  ping.exe          best
  157.      56352   9-15-94   4:09p  popdump.exe       ok
  158.      54288   9-15-94   4:09p  rexec.exe         ?
  159.      52128   9-15-94   4:09p  tcpinfo.exe       ?
  160.      76320   9-15-94   4:09p  tcpport.exe       ?
  161.      51152   9-15-94   4:09p  tcptalk.exe       no go
  162.  
  163.   The ftp program is the best I've found for direct downloads to the
  164. pc.  It downloads files very quickly, though the connection can time out
  165. unexpectedly.  Unfortunately, on uploads it becomes slower and slower so
  166. as to make it useless for all but the smallest of files.
  167.   Cautions: - popdump will delete the mail on the server.
  168.             - telnetd reportedly reboots the PC on exit.
  169.  
  170. NCSA/Univ. Port Elizabeth Telnet 2.3.07.04  (ping, hopchk, nslookup)
  171. ==========================================
  172.  
  173. Source:  ftp.upe.ac.za:/pub/msdos/ncsa/tel23074.zip
  174.  
  175.      80204   9-15-94   8:48p  finger.exe        unreliable
  176.     133006   9-15-94   8:48p  ftpbin.exe        no go
  177.      97304   9-15-94   8:49p  hopchk.exe        good
  178.      81296   9-15-94   8:49p  netstat.exe       no go
  179.      78660   9-15-94   8:49p  nslookup.exe      ok
  180.      97410   9-15-94   8:49p  ping.exe          unreliable
  181.     268966   9-15-94   8:47p  telbin.exe        no go
  182.       9088   2-27-94  10:34p  packetid.exe      (ok)
  183.  
  184.   The main programs telbin and ftpbin get nowhere, but some of the other
  185. utilities are quite useful.
  186.  
  187.  
  188. NUPOP 2.1 alpha 18 (new Post Office Protocol mail, gopher, finger, etc.)
  189. ==================
  190.  
  191. Source:  casbah.acns.nwu.edu:/pub/nupop/nupoppro.zip
  192.                                         nupopsch.zip
  193.                                         nupopsup.zip
  194.                              /pub/nupop/nupop210_test_release/nupop210.zip
  195.  
  196.     784896   3-17-94  10:43p  nupop.exe         ok
  197.      64984   1-16-94   5:48p  nutcpwat.exe      ok
  198.  
  199.   nupop seems to collect mail ok, although a bit slowly, and most of the
  200. built-in utilities work, with the exception of telnet which dies miserably.
  201. But it works well for nutcpwat; in either case, testing of the connection is
  202. flawless.  It appears crucial to set the "Retransmit Timeout" parameter to a
  203. *small* enough value, say 2 (ticks or seconds, the documentation is
  204. ambiguous).
  205.  
  206.  
  207. Trumpet News  (NNTP newsreader)
  208. ============
  209.  
  210. Source:  oak.oakland.edu:/SimTel/msdos/pktdrvr/trmp106b.zip
  211.  
  212.     201264   9-07-93   5:50p  news.exe          ok
  213.     237056   9-07-93   5:49p  newsdpmi.exe      ok
  214.  
  215.   newsdpmi will use expanded memory, so is preferred.
  216.  
  217.  
  218. Trumpet IRC 1.01  (Internet Relay Chat)
  219. ================
  220.  
  221. Source:  cs.bu.edu:/irc/clients/msdos/irc101.zip
  222.  
  223.     136608  11-07-93   0:35a  irc101.exe        ok
  224.  
  225.   Hey all, it works!!!!!!!!!! ... but the LAG :-(
  226.  
  227.  
  228. TALK-13  (talk)
  229. =======
  230.  
  231. Source:  oak.oakland.edu:/SimTel/msdos/pktdrvr/talk-13.zip
  232.  
  233.      47890   4-05-94   9:16p  talk.exe          ok
  234.  
  235.   Works fairly well (occasionally claims to "give up" but connects anyway).
  236.  
  237.  
  238. PC Gopher III 1.04  (gopher)
  239. ==================
  240.  
  241. Source:  oak.oakland.edu:/SimTel/msdos/pktdrvr/pcg3.zip
  242.  
  243.     270625   5-24-93  10:43a  gopher.exe        ok
  244.  
  245.   In this case, it's critical to set the Retransmit Timeout *large* enough,
  246. say 30 seconds.  Not real fast.
  247.  
  248.  
  249. CUTCP ARCHIE 2.2TN/TC-E  (archie)
  250. =======================
  251.  
  252. Source:  nic.switch.ch:/mirror/msdos/lan/archie.zip
  253.  
  254.     129984   1-27-92  10:18a  archie.exe        ok?
  255.  
  256.   Works some of the time.
  257.  
  258.  
  259. POPMail 3 (old POP mail, finger, IP resolver, etc.)
  260. =========
  261.  
  262. Source:  oak.oakland.edu:/SimTel/msdos/pktdrvr/popml322.zip
  263.  
  264.     374937   5-11-93   8:20p  popmail.exe       partly ok
  265.  
  266.   The link tests perfectly, and many of the minor utilities work, but can't
  267. get it to collect mail.
  268.  
  269.  
  270. KA9Q / NOS 2.16  (telnet, ftp, finger, ping, bbs, etc.)
  271. ===============
  272.  
  273. Source:  ftp.demon.co.uk:/pub/ibmpc/DIS/dis216b.exe
  274.                                         nos215.zip
  275.  
  276.     414726   3-23-94   3:14p  net.exe           cement
  277.  
  278.   Haven't got this to do much more than connect.  Performance unacceptable 
  279. over PPPPKT.
  280.  
  281. DOSLYNX  (lynx Word Wide Web browser)
  282. =======
  283.  
  284. Source:  ftp.demon.co.uk:/pub/ibmpc/lynx/dlx0_71a.zip
  285.  
  286.     530192   5-24-94   5:52p  doslynx.exe       no go
  287.  
  288.   Always gives "CTCP:  Port unreachable."
  289.  
  290.  
  291. PKTMUX  (packet multiplexer)
  292. ======
  293.  
  294. Source:  oak.oakland.edu:/SimTel/msdos/pktdrvr/pktmx12h.zip
  295.  
  296.   Useful for running simultaneous applications over a single packet driver in
  297. a multitasking environment.
  298.  
  299.